home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 83win / data1.cab / DLL_Toolkit / Source / HTBLink / Link.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-03-02  |  822 b   |  26 lines

  1. // Link.h: interface for the Link class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_LINK_H__6AA926BF_53B6_11D3_A911_00104B9A4FD0__INCLUDED_)
  6. #define AFX_LINK_H__6AA926BF_53B6_11D3_A911_00104B9A4FD0__INCLUDED_
  7.  
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11.  
  12. class Link  
  13. {
  14. public:
  15.     BOOL m_InFlag;                            // flag to remember inbound or outbound
  16.     Link(int ID, void *pData, short size, BOOL InFlag);    // constructor with info
  17.     Link();                                    // default constructor
  18.     virtual ~Link();                        // destructor
  19.  
  20.     short m_DataSize;                        // size of data for this link
  21.     void* m_pData;                            // pointer to the linked data
  22.     int m_LinkID;                            // id number of this link
  23. };
  24.  
  25. #endif // !defined(AFX_LINK_H__6AA926BF_53B6_11D3_A911_00104B9A4FD0__INCLUDED_)
  26.